home *** CD-ROM | disk | FTP | other *** search
- /*
- * a header of the class FILE_VERSION
- * Copyright (C) 1996 Kazutaka Hirata <khirata@jove.acs.unt.edu>
- */
-
- #ifndef _FILE_H_
- #define _FILE_H_
-
- #include "../intstr.h"
-
- class FILE_VERSION {
- public:
- enum {
- VERSION_170 ,
- VERSION_200A8 ,
- VERSION_200B0 ,
- VERSION_200B18,
- VERSION_UNKNOWN
- };
- private:
- static const INTSTR_ELEMENT version_str_table[];
- public:
- uint get_version_no(const char* str) const;
- const char* get_version_str(uint ver) const;
- };
-
- #endif /* _FILE_H_ */
-